Lab Templates/Lab Template - WAF for GCP Coffeeshop/sql-injection-demo/sql/create_db.sql (9 lines of code) (raw):
CREATE TABLE coffee (
id SERIAL PRIMARY KEY,
blend_name char(64),
origin char(64),
variety char(64),
notes char(64),
intensifier char(64),
price float
);